home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / Think C dcmd 1.0.1 ƒ / Think Put Lib source / PutPStr.c < prev    next >
Encoding:
Text File  |  1994-06-12  |  123 b   |  10 lines  |  [TEXT/KAHL]

  1. void PutChar(char c);
  2.  
  3. void PutPStr(const unsigned char* s)
  4. {
  5.         int i;
  6.         
  7.     for ( i=1; i<= s[0]; i++ )
  8.         PutChar( s[i] );
  9. }
  10.